home *** CD-ROM | disk | FTP | other *** search
/ 100 Plus Great Games 2 / 100PLUSV2.BIN / games / SimpleFaro.dxr / Internal_12_sequence betting.ls < prev    next >
Encoding:
Text File  |  2002-01-25  |  434 b   |  19 lines

  1. property textu, cardlistflag, spriteNum
  2. global cardList, complist, points, playerCredits
  3.  
  4. on getPropertyDescriptionList
  5.   return [#textu: [#comment: "none", #format: #integer, #default: 0]]
  6. end
  7.  
  8. on beginSprite
  9.   cardlistflag = 0
  10. end
  11.  
  12. on mouseDown me
  13.   if not cardList.findPos(spriteNum) then
  14.     cardList.add(spriteNum)
  15.     sprite(textu).member.text = string(cardList.findPos(spriteNum))
  16.     sprite(spriteNum).blend = 75
  17.   end if
  18. end
  19.